home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Canadian & World Encyclopedia 1998
/
The Canadian & World Encyclopedia 1998 - Disc 2.iso
/
mac
/
prime_CD
/
pb
/
PREVIEW.DIR
/
00105_Script_cursor stack
< prev
next >
Wrap
Text File
|
1997-07-22
|
612b
|
33 lines
property cursorList
on new me
push me, 1, 48
return me
end
on push me, start, end
set cursorList = []
repeat with i = start to end
add cursorList, the cursor of sprite i
end repeat
return me
end
on pop me, start, end
repeat with i = start to end
set the cursor of sprite i = getat(cursorList, i)
end repeat
return me
end
on setCursor me, cursorVar, start, end
set cursorList = []
repeat with i = start to end
set the cursor of sprite i = cursorVar
add cursorList, the cursor of sprite i
end repeat
cursor cursorVar
return me
end